Correct this thing to properly recompress test3



all bit codes are backwards:
011	110	num=2
0111	1110	num=3,  offset
1111	1111xxxxxxxx	num=x, offset
0001	1000	num=4, offset
0101	1010	num=5, offset
01001	10010	num=6, offset
11001	10011	num=7, offset
01101	10110	num=8, offset
11101	10111xxxx	write next x+3 words	(x+3)*4 bytes
	111100000000	terminate
0	0	0x0
011	110	0x100
0001	1000	0x200
1001	1001	0x300
10101	10101	0x400
11101	10111	0x500
10111	11101	0x600
11111	11111	0x700
000101	101000	0x800
100101	101001	0x900
001101	101100	0xA00
101101	101101	0xB00
000111	111000	0xC00
100111	111001	0xD00
001111	111100	0xE00
101111	111101	0xF00